/* =========================================================
   MUDIKA Nusantara Carlo Acutis - CSS Final
   Versi rapi, profesional, dan responsif
   ========================================================= */

/* Reset & Base Style */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'France', sans-serif;
    line-height: 1.6;
    color: #00000000;
    background: linear-gradient(to right, rgb(255, 215, 0), rgb(169, 94, 1));

}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

p {
    color: #000;
    margin-bottom: 1rem;
}

/* Links */
a {
    color: red;
    text-decoration: none;
}

a:hover {
    color: green;
}

/* Header - Social Icons & Announcement */
#date-time {
    font-weight: bold;
    text-align: center;
    font-size: 0.9rem;
    color: green;
    margin-top: 0.5rem;
}

#social-icons {
    text-align: center;
    margin-bottom: 0.5rem;
}

#social-icons a {
    color: #fff;
    background: red;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin: 0 0.2rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

#social-icons a:hover {
    background: green;
    transform: translateY(-2px);
}

.announcement-wrapper {
    background: linear-gradient(to left, rgb(169, 94, 1), rgb(255, 215, 0));
    padding: 0.5rem 0;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 3);
    font-weight: bold;
    animation: slideIn 10s ease-in-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

marquee {
    font-size: 0.9rem;
    color: #000;
    padding: 0.5rem 0;
    background: linear-gradient(to right, rgb(169, 94, 1), rgb(255, 215, 0));
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    animation: slideIn 10s ease-in-out;
    margin-top: 15px;
}

.navbar {
    background: linear-gradient(to left, red, green, rgb(169, 94, 1));
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
}

.navbar-brand {
    display: flex;
    align-items: center;
    color: rgb(255, 215, 0);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    font-weight: bold;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    margin-left: -6px;
    /* geser keseluruhan; ubah sesuai selera */
    padding-left: 0;
    /* pastikan padding tidak mengimbangi margin */
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.navbar-brand:hover {
    color: rgb(169, 94, 1);
    text-shadow: 1px 1px 2px rgb(255, 215, 0);
}

.navbar-logo {
    margin-left: -8px;
    /* nilai negatif menggeser ke kiri; ubah -8px sesuai kebutuhan */
    transform: translateX(-2px);
    /* haluskan offset jika perlu */
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-toggler {
    background: transparent;
    border: none;
    outline: none;
    color: rgb(255, 215, 0);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.nav-item {
    margin: 0 10px;
    font-size: 1.2rem;
    font-weight: 500;
    color: rgb(255, 215, 0);
}

.nav-link {
    color: rgb(255, 215, 0);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgb(169, 94, 1);
    text-shadow: 1px 1px 2px rgb(255, 215, 0);
}

.dropdown-menu {
    background: rgb(255, 215, 0);
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-menu a {
    color: rgb(169, 94, 1);
    padding: 0.5rem 1rem;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-item {
    font-weight: 500;
    color: rgb(169, 94, 1);
    padding: 0.5rem 1rem;
    transition: background 0.3s ease;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

.dropdown-item:hover {
    color: red;
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dropdown-header {
    font-size: 1.1rem;
    font-weight: bold;
    color: rgb(169, 94, 1);
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-logo {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

}

/* Media Sosial Bar */
.mediaSosial a {
    background: #ffcc00;
    color: #000000;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    transition: all 0.3s ease;
}

.mediaSosial a:hover {
    background: rgb(169, 94, 1);
    color: rgb(255, 215, 0);
    transform: translateY(-2px);
}

/* =========================================================
   Carousel & Cards
   ========================================================= */
.carousel-inner img {
    width: 100%;
    object-fit: contain;
}

.carousel-caption {
    font-size: 0.9rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.card {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    object-fit: cover;
}

/* Section Styles */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    border-bottom: 2px solid #ffcc00;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.social-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin: 30px auto;
    max-width: 1100px;
    font-family: Arial, sans-serif;
}

/* Kartu sosial */
.social-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Header */
.social-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}

.social-header h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: bold;
}

/* Embed video dan post */
.social-embed {
    position: relative;
    padding: 0;
    background: #000;
}

.social-embed iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* YouTube embed responsif */
.youtube-embed {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
    height: 0;
    background: #000;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Footer */
.social-footer {
    padding: 12px;
    text-align: center;
    border-top: 1px solid #eee;
    background: #fafafa;
}

/* Tombol */
.btn-social {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

/* TikTok button */
.tiktok-btn {
    background: linear-gradient(90deg, #010101, #25F4EE, #010101);
}

.tiktok-btn:hover {
    background: linear-gradient(90deg, #000000, #1dbfd0, #000000);
}

/* Instagram button */
.instagram-btn {
    background: linear-gradient(45deg, #F77737, #E1306C, #C13584);
}

.instagram-btn:hover {
    background: linear-gradient(45deg, #d95d2a, #c42a5e, #a12b70);
}

/* YouTube button */
.youtube-btn {
    background: #FF0000;
}

.youtube-btn:hover {
    background: #cc0000;
}

.btn-MNCA {
    background: linear-gradient(to right, rgb(169, 94, 1), rgb(255, 215, 0));
    color: red;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-MNCA:hover {
    background: linear-gradient(to left, rgb(169, 94, 1), rgb(255, 215, 0));
    color: green;
    transform: translateY(-2px);
}

#welcome {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
    align-items: center;
    justify-content: center;
}

#liturgy {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

/* Advice Section */
#advice {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
    color: #fff;
    background: rgb(169, 94, 1);
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    text-align: center;
}

#advice blockquote {
    font-size: 1.2rem;
    border-left: 5px solid #28a745;
    padding-left: 1rem;
    font-style: italic;
}

/* Amazed Section */
#amazed {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
    align-items: center;
    justify-content: center;
}

#saweria {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#saweria h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: center;
}

#donasiModal img {
    width: 35%;
    height: 35%;
    margin-bottom: 2rem;
    border-radius: 10px;
}

#saweria p {
    color: #fff;
    font-size: 1.5rem;
}

#Yubileum2025 {
    width: 100%;
    height: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
}

/* eShop Section */
#eShop .card {
    border: 1px solid #eee;
}

#eShop img {
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}

/* Join Buttons */
#joinGroup a,
#joinWithUs button {
    transition: all 0.3s ease;
}

#joinGroup a:hover,
#joinWithUs button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

#liturgy .container {
    padding: 2rem;
    background: rgb(255, 215, 0);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#liturgy h2 {
    color: rgb(169, 94, 1);
    font-size: 1.8rem;
    letter-spacing: 1px;
}

#liturgy .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#liturgy .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


/* Forms */
form .form-control {
    border-radius: 30px;
    padding: 0.6rem 1rem;
    border: 1px solid #ddd;
}

form .form-control:focus {
    border-color: #ffcc00;
    box-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
}

/* Footer */
footer {
    background: linear-gradient(to right, rgb(169, 94, 1), rgb(255, 215, 0));
    color: red;
    padding: 2rem 0;
    font-size: 1.2rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

footer i {
    margin-top: 50px;
    left: 50%;
    margin-right: 10px;
    margin-left: 10px;
    font-size: 2rem;
    color: red;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

footer i:hover {
    color: green;
    transform: translate(-50%, -50%) scale(1.1);
}


footer a {
    text-align: center;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    font-weight: bold;
    color: red;
    text-decoration: none;
}

footer small {
    font-size: 1rem;
    margin-top: 15px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);

}

footer span {
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

footer p {
    color: red;
    font-weight: bolder;
    font-size: 1rem;
    margin-top: 15px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

/* Back to Top */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background: linear-gradient(to right, rgb(169, 94, 1), rgb(255, 215, 0));
    color: white;
    border: none;
    padding: 0.6rem 0.8rem;
    display: none;
    transition: all 0.3s ease;
}

#backToTop.show {
    display: inline-block;
}

#backToTop:hover {
    background: linear-gradient(to left, #b30000, #660000);
    color: rgb(255, 215, 0);
    transform: translateY(-2px);
}

/* Floating Button */
.wa-button {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9999;
}

#waFloatingBtn {
    background-color: #25D366;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

#waFloatingBtn:hover {
    transform: scale(1.05);
}

#waFloatingBtn img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

/* Chatbox */
.wa-chatbox {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 280px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* Header */
.wa-chat-header {
    background: #25D366;
    color: #fff;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.wa-chat-header button {
    background: none;
    border: none;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}

/* Body */
.wa-chat-body {
    padding: 12px;
}

.wa-chat-body p {
    margin-bottom: 10px;
    font-size: 14px;
}

.wa-msg-btn {
    display: block;
    width: 100%;
    background: #f1f1f1;
    border: none;
    padding: 10px;
    margin: 6px 0;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    transition: background 0.2s ease;
}

.wa-msg-btn:hover {
    background: #e2e2e2;
}


/* =========================================================
   Responsive Design
   ========================================================= */

/* Mobile */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.5rem;
        text-align: center;
        font-weight: bold;
    }

    .nav-item {
        font-size: 1rem;
        margin: 0 5px;
        text-align: center;
        font-weight: bold;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        transition: color 0.3s ease;
    }

    .nav-link:hover {
        color: rgb(169, 94, 1);
        text-shadow: 1px 1px 2px rgb(255, 215, 0);
    }

    .dropdown-menu {
        font-size: 0.9rem;
        padding: 0.5rem;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .dropdown-item {
        padding: 0.5rem 1rem;
        font-weight: 500;
        color: rgb(169, 94, 1);
        transition: background 0.3s ease;
    }

    .dropdown-item:hover {
        color: red;
        background: rgba(255, 215, 0, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .dropdown-header {
        font-size: 1rem;
        font-weight: bold;
        color: rgb(169, 94, 1);
        padding: 0.5rem 1rem;
    }

    .dropdown-logo {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        border-radius: 50%;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .social-embed iframe {
        height: 300px;
    }

    body {
        font-size: 0.9rem;
    }

    .social-embed iframe {
        height: 380px;
    }

    .carousel-inner img {
        object-fit: contain;
        width: 100%;
    }

    .card img {
        height: 150px;
    }

    #eShop img {
        height: 150px;
    }

    #liturgy .container {
        padding: 2rem;
        background: rgb(255, 215, 0);
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    #liturgy h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: rgb(169, 94, 1);
        text-align: center;
        font-weight: bold;
        letter-spacing: 1px;
        margin-bottom: 2rem;
    }

    #liturgy .card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-bottom: 1rem;
    }

    #liturgy .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    form .form-control {
        border-radius: 20px;
        padding: 0.5rem 0.8rem;
    }

    footer {
        font-size: 0.9rem;
        padding: 1rem 0;
        text-align: center;
        background: linear-gradient(to right, rgb(169, 94, 1), rgb(255, 215, 0));
        color: red;
    }

    footer i {
        font-size: 1.5rem;
        color: red;
    }

    footer i:hover {
        color: green;
    }

    footer a {
        font-size: 0.9rem;
        color: red;
    }

    footer a:hover {
        color: green;
    }

    footer small {
        font-size: 0.8rem;
        margin-top: 10px;
        margin-bottom: 10px;
        text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    }

    footer span {
        text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    }

    footer p {
        color: red;
        font-weight: bolder;
        font-size: 0.9rem;
        margin-top: 10px;
        margin-bottom: 10px;
        text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    }

    #backToTop {
        bottom: 15px;
        right: 15px;
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* ===== MOBILE NAV OVERLAY FIX <=576px ===== */
@media (max-width: 576px) {

    /* Pastikan mockup/device tidak memotong menu */
    .phone-frame, .device-mockup, .mockup-container {
        overflow: visible !important;
        -webkit-overflow-scrolling: touch;
    }

    /* Class yg ditambahkan saat collapse dipindah ke body */
    .mobile-nav-overlay {
        position: fixed !important;
        top: 0;
        /* akan disesuaikan via JS ke bawah navbar */
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        z-index: 1060;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: linear-gradient(to left, red, green, rgb(169, 94, 1));
        /* ubah kalau mau gradien */
        padding-bottom: 1.25rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    /* Kontainer di dalam overlay: beri jarak dari atas (JS mengatur top) */
    .mobile-nav-overlay .navbar-nav {
        display: block;
        padding: 0.5rem 0;
        margin: 0;
        text-align: left;
        /* pastikan bukan centered */
    }

    .mobile-nav-overlay .nav-link {
        display: block;
        padding: 0.7rem 1rem;
        font-weight: 600;
        color: #222 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        background: transparent;
    }

    .mobile-nav-overlay .nav-link:hover,
    .mobile-nav-overlay .dropdown-item:hover {
        background: rgba(0, 0, 0, 0.03);
    }

    /* Dropdown dalam overlay jadi statis dan full width */
    .mobile-nav-overlay .dropdown-menu {
        position: static !important;
        display: block;
        width: 100%;
        box-shadow: none;
        margin: 0;
        border-radius: 0;
    }

    .mobile-nav-overlay .dropdown-item {
        padding: 0.6rem 1rem;
    }

    /* Hapus center alignment yang sebelumnya mengganggu */
    .navbar, .navbar .container-fluid {
        text-align: left !important;
    }

    /* beri ruang dari tepi layar agar tidak menempel */
    .navbar {
        padding-left: 0.5rem;
        /* pastikan navbar tidak nempel ke tepi perangkat */
        padding-right: 0.5rem;
    }

    /* geser logo sedikit lebih ke kiri di mobile */
    .navbar-logo {
        margin-left: -10px;
        /* lebih agresif di mobile bila perlu */
        transform: none;
        /* hapus transform jika menimbulkan blur */
    }

    /* sesuaikan teks brand agar tetap terlihat */
    .navbar-brand {
        margin-left: -4px;
        font-size: 0.95rem;
    }

    /* Pastikan teks brand tetap terlihat */
    .navbar-brand {
        font-size: 1.2rem;
        margin-left: -4px;
        /* geser sedikit ke kiri */
        padding-left: 0;
        /* pastikan padding tidak mengimbangi margin */
    }

    .carousel-inner {
        width: 100%;
        height: auto;
        margin: 0 auto;
        padding: 0 1rem;
        /* beri jarak horizontal */
        overflow: hidden;
        /* sembunyikan overflow */
        position: relative;
    }

    .carousel-inner img {
        width: 100%;
        height: auto;
        object-fit: cover;
        /* pastikan gambar mengisi area */
        display: block;
        margin: 0 auto;
        /* pastikan gambar terpusat */
        max-height: 60vh;
        /* batasi tinggi gambar */
    }

    .btn-MNCA {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
        border-radius: 20px;
    }

    #saweria {
        padding: 1rem;
        text-align: center;
        font-size: 0.9rem;
    }

    #saweria h2 {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    #saweria p {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    #donasiModal img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 20px;
        margin-bottom: 1rem;
    }

    #liturgy .container {
        padding: 2rem;
        background: rgb(255, 215, 0);
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    #liturgy h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: rgb(169, 94, 1);
        text-align: center;
        font-weight: bold;
        letter-spacing: 1px;
        margin-bottom: 2rem;
    }

    #liturgy .card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-bottom: 1rem;
    }

    #liturgy .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    footer {
        padding: 1rem 0;
        font-size: 0.9rem;
        text-align: center;
        background: linear-gradient(to right, rgb(169, 94, 1), rgb(255, 215, 0));
        color: red;
    }

    footer i {
        font-size: 1.5rem;
    }

    footer small {
        font-size: 0.8rem;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    footer p {
        font-size: 0.9rem;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    #backToTop {
        bottom: 20px;
        right: 25px;
        padding: 0.4rem 0.6rem;
        font-size: 1.2rem;
    }
}